home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / WV Adobe ImageReady 3.0 history.xpl < prev    next >
Text File  |  2002-04-06  |  1KB  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Other Programs\Adobe\ImageReady 3.0\"
  5. "NAME"="Recent files list size"
  6. "VERSION"="1.00"
  7. "OSVERSION"=""
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Value:"
  10. "DESCRIPTION 1"="By default, Adobe ImageReady 3.0 displays the last 10 opened files."
  11. "DESCRIPTION 2"="With this plug-in, you can change this value."
  12. "DESCRIPTION 3"="Example : enter "30" [without quote] to have the list of the last 30 opened files."
  13. "AUTHOR"="FORMATMAN"
  14. "CONTACTURL"="http://formatland.free.fr/"
  15. "COPYRIGHT"="Copyright ⌐ Formatman"
  16. "COMMENT 1"="For more informations, go to http://www.xsetup.net"
  17. "COMMENT 2"="Created by VORMELKER Werner"
  18. "COMMENT 3"="http://formatland.free.fr/"
  19. "COMMENT 4"="formatman@wanadoo.fr"
  20.  
  21. sP="HKCU\Software\Adobe\ImageReady 3.0\Preferences\RecentFiles\MaxCount\"
  22.  
  23. Sub Plugin_Initialize 
  24.   i=RegReadValue(sP)
  25.   SetUIElement 1,i
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  i=GetUIElement(1)
  33.  Call RegWriteValue(sP,i,2)
  34.  Call Restart()
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.